home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / rexx / 327 < prev    next >
Encoding:
Internet Message Format  |  1996-08-06  |  865 b 

  1. Path: news-m01.ny.us.ibm.net!usenet
  2. From: Frank Breedijk <promico@ibm.net>
  3. Newsgroups: comp.lang.rexx
  4. Subject: Re: VRCreate? for VXREXX
  5. Date: Wed, 17 Jan 1996 18:48:58 +0000
  6. Organization: ProMicro Limited, London
  7. Distribution: inet
  8. Message-ID: <VA.0000011c.0016498c@slip139-92-42-242.emea.ibm.net>
  9. References: <DL8CrI.GrF@rockyd.rockefeller.edu>
  10. Reply-To: promico@ibm.net
  11. NNTP-Posting-Host: slip139-92-42-242.emea.ibm.net
  12. X-Newsreader: Virtual Access by Ashmount Research Ltd, http://www.ashmount.com
  13.  
  14.  
  15. > Is it possible to use VRCreate to BOTH create an object with the
  16. > desired property values AND associate (link) code to that object
  17. > at run-time????? 
  18.  
  19. No, you will have to associate the code by useing this:
  20.  
  21. VRSet( {object}, {event}, {my_routine} )
  22.  
  23. eg
  24.  
  25. VRSet( "My_New_Object", "Click", "My_Click_Routine" )
  26.  
  27. This can be done on-line.
  28.  
  29. MZZL,
  30. Frank Breedijk
  31.  
  32.